home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / zm16src.lzh / COMMON.C next >
C/C++ Source or Header  |  1988-05-19  |  36KB  |  1,416 lines

  1. /*
  2.  *                ACKNOWLEDGEMENTS
  3.  *
  4.  *    ZMDM was derived from rz/sz for Unix  posted by 
  5.  *    Chuck Forsberg (...!tektronix!reed!omen!caf ). We
  6.  *    thank him for his excellent code, and for giving
  7.  *    us permission to use and distribute his code and
  8.  *    documentation.
  9.  *
  10.  *    Atari St version by:
  11.  *        Jwahar Bammi
  12.  *            usenet: mandrill!bammi@{decvax,sun}.UUCP
  13.  *            csnet:  bammi@mandrill.ces.CWRU.edu
  14.  *            arpa:   bammi@mandrill.ces.CWRU.edu
  15.  *            CompuServe: 71515,155
  16.  */
  17.  
  18. #include "config.h"
  19.  
  20. #define IN_COMMON
  21.  
  22. /*
  23.  * -rev 08-17-86
  24.  * mode function and most of the rest of the system dependent
  25.  * stuff for rb.c and sb.c   This file is #included so the includer
  26.  * can set parameters such as HOWMANY.  See the main file (rz.c/sz.c)
  27.  * for compile instructions.
  28.  */
  29.  
  30. #ifdef DLIBS
  31. #include <string.h>
  32. #endif
  33.  
  34. #include "zmdm.h"
  35. #include "zmodem.h"
  36.  
  37. #ifndef Supexec
  38.         /* Some versions of osbind don't define Supexec */
  39. #define Supexec(X) xbios(38,X)
  40. #endif
  41.  
  42. #define CRCTABLE
  43.  
  44.         /* GLOBALS */
  45. int Zmodem;        /* ZMODEM protocol requested */
  46. int Nozmodem;    /* If invoked as "rb" */
  47. int Badclose;    /* Error on last close */
  48. int Batch;
  49. int Wcsmask;
  50. int Verbose;
  51. int Quiet;        /* overrides logic that would otherwise set verbose */
  52. int Lleft;        /* number of characters in linbuf */
  53. int Readnum;    /* Number of bytes to ask for in read() from modem */
  54. int Crcflg;
  55. int ForceBinary;        /* local binary force override for rz */
  56.  
  57. FILE *logf;
  58. FILE *STDERR;
  59. int vdebug;    /* set if RDEBUG or SDEBUG */
  60.  
  61. char secbuf[KSIZE];
  62. char linbuf[KSIZE];
  63. #if (MWC || MANX)            /* File i/o buffer */
  64. unsigned char *bufr;    /* In MWC or MANX it is lmalloc()'ed in main.c */
  65. #else
  66. #ifndef DYNABUF
  67. unsigned char bufr[BBUFSIZ];
  68. #else
  69. unsigned char *bufr;
  70. #endif /* DYNABUF */
  71. #endif
  72. int fout;
  73. int Lastrx;
  74. int Firstsec;
  75. int Eofseen;        /* indicates cpm eof (^Z) has been received */
  76. int errors;
  77. long Bytesleft;        /* number of bytes of incoming file left */
  78. long Modtime;        /* Unix style mod time for incoming file */
  79. int Filemode;        /* Unix style mode for incoming file */
  80. char Pathname[PATHLEN];
  81. char *Progname;        /* the name by which we were called */
  82.  
  83. int Thisbinary;        /* current file is to be received in bin mode */
  84. int Blklen;        /* record length of received packets */
  85. char Lzmanag;        /* Local file management request */
  86. char zconv;        /* ZMODEM file conversion request */
  87. char zmanag;        /* ZMODEM file management request */
  88. char ztrans;        /* ZMODEM file transport request */
  89.  
  90. jmp_buf tohere;        /* For the interrupt on RX timeout */
  91. jmp_buf abrtjmp;    /* for force abort */
  92. jmp_buf busjmp;        /* for bus errors */
  93. jmp_buf addrjmp;    /* for address errors */
  94. unsigned long BusErr, AddrErr;    /* saved vector addresses */
  95. int Zctlesc;        /* Encode control characters */
  96. int SendType;        /* Which send line to use    */
  97. int Modem;        /* Send using Xmodem */
  98. int lsct;
  99. int tryzhdrtype;    /* Header type to send corresponding to Last rx close */
  100. int Txfcs32;        /* TRUE means send binary frames with 32 bit FCS */
  101.  
  102.     /* Globals used by ZMODEM functions */
  103. int Rxframeind;        /* ZBIN or ZHEX indicates type of frame received */
  104. int Rxtype;        /* Type of header received */
  105. int Rxcount;        /* Count of data bytes received */
  106. int Rxtimeout;        /* Tenths of seconds to wait for something */
  107. int Znulls;        /* Number of nulls to send at beginning of ZDATA hdr */
  108. char Rxhdr[4];        /* Received header */
  109. char Txhdr[4];        /* Transmitted header */
  110. long Rxpos;        /* Received file position */
  111. long Txpos;        /* Transmitted file position */
  112. char Attn[ZATTNLEN+1];    /* Attention string rx sends to tx on err */
  113.  
  114.         /* Globals used by Sz */
  115. char Lzconv;    /* Local ZMODEM file conversion request */
  116. char Lztrans;
  117. char *Cmdstr;        /* Pointer to the command string */
  118. int Optiong;        /* Let it rip no wait for sector ACK's */
  119. int Noeofseen;
  120. int Totsecs;        /* total number of sectors this file */
  121. int Command;        /* Send a command, then exit. */
  122. int Cmdack1;        /* Rx ACKs command, then do it */
  123. int Exitcode;
  124. int Testattn;        /* Force receiver to send Attn, etc with qbf. */
  125. int Lastc;        /* Count of last buffer read or -1 */
  126. int Dontread;        /* Don't read the buffer, it's still there */
  127. int Wantfcs32;        /* want to send 32 bit FCS */
  128. long Lastread;        /* Beginning offset of last buffer read */
  129. jmp_buf intrjmp;    /* For the interrupt on RX CAN */
  130.  
  131. char *qbf;
  132. unsigned int Rxbuflen;    /* Receiver's max buffer length */
  133. int Cmdtries;
  134. int Filcnt;        /* count of number of files opened */
  135. int Lfseen;
  136. int Tframlen;        /* Override for tx frame length */
  137. int blkopt;        /* Override value for zmodem blklen */
  138. int Rxflags;
  139. int Ascii;        /* Add CR's for brain damaged programs */
  140. int Fullname;        /* transmit full pathname */
  141. int Unlinkafter;    /* Unlink file after it is sent */
  142. int Dottoslash;        /* Change foo.bar.baz to foo/bar/baz */
  143. int errcnt;        /* number of files unreadable */
  144. int siggi;        /* line interrupt enable flag     */
  145.  
  146. /* crctab calculated by Mark G. Mendel, Network Systems Corporation */
  147. unsigned int crctab[256] = {
  148.     0x0000,  0x1021,  0x2042,  0x3063,  0x4084,  0x50a5,  0x60c6,  0x70e7,
  149.     0x8108,  0x9129,  0xa14a,  0xb16b,  0xc18c,  0xd1ad,  0xe1ce,  0xf1ef,
  150.     0x1231,  0x0210,  0x3273,  0x2252,  0x52b5,  0x4294,  0x72f7,  0x62d6,
  151.     0x9339,  0x8318,  0xb37b,  0xa35a,  0xd3bd,  0xc39c,  0xf3ff,  0xe3de,
  152.     0x2462,  0x3443,  0x0420,  0x1401,  0x64e6,  0x74c7,  0x44a4,  0x5485,
  153.     0xa56a,  0xb54b,  0x8528,  0x9509,  0xe5ee,  0xf5cf,  0xc5ac,  0xd58d,
  154.     0x3653,  0x2672,  0x1611,  0x0630,  0x76d7,  0x66f6,  0x5695,  0x46b4,
  155.     0xb75b,  0xa77a,  0x9719,  0x8738,  0xf7df,  0xe7fe,  0xd79d,  0xc7bc,
  156.     0x48c4,  0x58e5,  0x6886,  0x78a7,  0x0840,  0x1861,  0x2802,  0x3823,
  157.     0xc9cc,  0xd9ed,  0xe98e,  0xf9af,  0x8948,  0x9969,  0xa90a,  0xb92b,
  158.     0x5af5,  0x4ad4,  0x7ab7,  0x6a96,  0x1a71,  0x0a50,  0x3a33,  0x2a12,
  159.     0xdbfd,  0xcbdc,  0xfbbf,  0xeb9e,  0x9b79,  0x8b58,  0xbb3b,  0xab1a,
  160.     0x6ca6,  0x7c87,  0x4ce4,  0x5cc5,  0x2c22,  0x3c03,  0x0c60,  0x1c41,
  161.     0xedae,  0xfd8f,  0xcdec,  0xddcd,  0xad2a,  0xbd0b,  0x8d68,  0x9d49,
  162.     0x7e97,  0x6eb6,  0x5ed5,  0x4ef4,  0x3e13,  0x2e32,  0x1e51,  0x0e70,
  163.     0xff9f,  0xefbe,  0xdfdd,  0xcffc,  0xbf1b,  0xaf3a,  0x9f59,  0x8f78,
  164.     0x9188,  0x81a9,  0xb1ca,  0xa1eb,  0xd10c,  0xc12d,  0xf14e,  0xe16f,
  165.     0x1080,  0x00a1,  0x30c2,  0x20e3,  0x5004,  0x4025,  0x7046,  0x6067,
  166.     0x83b9,  0x9398,  0xa3fb,  0xb3da,  0xc33d,  0xd31c,  0xe37f,  0xf35e,
  167.     0x02b1,  0x1290,  0x22f3,  0x32d2,  0x4235,  0x5214,  0x6277,  0x7256,
  168.     0xb5ea,  0xa5cb,  0x95a8,  0x8589,  0xf56e,  0xe54f,  0xd52c,  0xc50d,
  169.     0x34e2,  0x24c3,  0x14a0,  0x0481,  0x7466,  0x6447,  0x5424,  0x4405,
  170.     0xa7db,  0xb7fa,  0x8799,  0x97b8,  0xe75f,  0xf77e,  0xc71d,  0xd73c,
  171.     0x26d3,  0x36f2,  0x0691,  0x16b0,  0x6657,  0x7676,  0x4615,  0x5634,
  172.     0xd94c,  0xc96d,  0xf90e,  0xe92f,  0x99c8,  0x89e9,  0xb98a,  0xa9ab,
  173.     0x5844,  0x4865,  0x7806,  0x6827,  0x18c0,  0x08e1,  0x3882,  0x28a3,
  174.     0xcb7d,  0xdb5c,  0xeb3f,  0xfb1e,  0x8bf9,  0x9bd8,  0xabbb,  0xbb9a,
  175.     0x4a75,  0x5a54,  0x6a37,  0x7a16,  0x0af1,  0x1ad0,  0x2ab3,  0x3a92,
  176.     0xfd2e,  0xed0f,  0xdd6c,  0xcd4d,  0xbdaa,  0xad8b,  0x9de8,  0x8dc9,
  177.     0x7c26,  0x6c07,  0x5c64,  0x4c45,  0x3ca2,  0x2c83,  0x1ce0,  0x0cc1,
  178.     0xef1f,  0xff3e,  0xcf5d,  0xdf7c,  0xaf9b,  0xbfba,  0x8fd9,  0x9ff8,
  179.     0x6e17,  0x7e36,  0x4e55,  0x5e74,  0x2e93,  0x3eb2,  0x0ed1,  0x1ef0
  180. };
  181.  
  182. /*
  183.  * Copyright (C) 1986 Gary S. Brown.  You may use this program, or
  184.  * code or tables extracted from it, as desired without restriction.
  185.  *
  186.  *   Need an unsigned type capable of holding 32 bits;
  187.  */
  188. typedef unsigned long int UNS_32_BITS;
  189.  
  190. /* First, the polynomial itself and its table of feedback terms.  The  */
  191. /* polynomial is                                                       */
  192. /* X^32+X^26+X^23+X^22+X^16+X^12+X^11+X^10+X^8+X^7+X^5+X^4+X^2+X^1+X^0 */
  193. /* Note that we take it "backwards" and put the highest-order term in  */
  194. /* the lowest-order bit.  The X^32 term is "implied"; the LSB is the   */
  195. /* X^31 term, etc.  The X^0 term (usually shown as "+1") results in    */
  196. /* the MSB being 1.